home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 48 / PC Gamer IT CD 48 2-2.iso / Starsiege / tribesdemo.exe / Disk1 / data1.cab / Tribes_Demo / base / scripts.vol / trigger.cs < prev    next >
Encoding:
Text File  |  1999-09-14  |  1.2 KB  |  49 lines

  1. //----------------------------------------------------------------------------
  2.  
  3. TriggerData GroupTrigger
  4. {
  5.     className = "Trigger";
  6.     rate = 1.0;
  7. };
  8.  
  9. function GroupTrigger::onEnter(%this,%object)
  10. {
  11.     %type = getObjectType(%object);
  12.     if(%type == "Player" || %type == "Vehicle") {
  13.         %group = getGroup(%this); 
  14.          %count = Group::objectCount(%group);
  15.          for (%i = 0; %i < %count; %i++) 
  16.              GameBase::virtual(Group::getObject(%group,%i),"onTrigEnter",%object,%this);
  17.     }
  18. }    
  19.  
  20. function GroupTrigger::onLeave(%this,%object)
  21. {
  22.     %type = getObjectType(%object);
  23.     if(%type == "Player" || %type == "Vehicle") {
  24.         %group = getGroup(%this); 
  25.         %count = Group::objectCount(%group);
  26.         for (%i = 0; %i < %count; %i++) 
  27.             GameBase::virtual(Group::getObject(%group,%i),"onTrigLeave",%object,%this);
  28.     }
  29. }
  30.  
  31. function GroupTrigger::onContact(%this,%object)
  32. {
  33.     %type = getObjectType(%object);
  34.     if(%type == "Player" || %type == "Vehicle") {
  35.         %group = getGroup(%this); 
  36.         %count = Group::objectCount(%group);
  37.         for (%i = 0; %i < %count; %i++) 
  38.             GameBase::virtual(Group::getObject(%group,%i),"onTrigger",%object,%this);
  39.     }
  40. }
  41.  
  42. function GroupTrigger::onActivate(%this)
  43. {
  44. }
  45.  
  46. function GroupTrigger::onDeactivate(%this)
  47. {
  48. }
  49.